home *** CD-ROM | disk | FTP | other *** search
/ Super PC 34 / Super PC 34 (Shareware).iso / spc / UTIL / DJGPP2 / V2 / DJLSR200.ZIP / src / libc / ansi / stdio / scanf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-26  |  277 b   |  16 lines

  1. /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
  2. #include <stdio.h>
  3. #include <stdarg.h>
  4. #include <libc/file.h>
  5.  
  6. int
  7. scanf(const char *fmt, ...)
  8. {
  9.   int r;
  10.   va_list a=0;
  11.   va_start(a, fmt);
  12.   r = _doscan(stdin, fmt, a);
  13.   va_end(a);
  14.   return r;
  15. }
  16.